Carbon


QDArcProcPtr

Header: Quickdraw.h Carbon status: Supported

typedef void(* QDArcProcPtr) (
    GrafVerb verb, 
    Rect *r, 
    SInt16 startAngle, 
    SInt16 arcAngle
);

You would declare your function like this if you were to name it MyQDArcCallback:

void MyQDArcCallback (
    GrafVerb verb, 
    Rect *r, 
    SInt16 startAngle, 
    SInt16 arcAngle
);
verb
r
startAngle
arcAngle

AVAILABILITY

Supported in Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 4/14/2000)